home *** CD-ROM | disk | FTP | other *** search
- echo off
- if "%1"=="" goto bad
- cls
- echo Beginning installation from Drive %1. Please wait . . .
- :disk1
- if not exist %1:sla10.001 goto disk1
- echo Copying DISK1 . . .
- copy %1:sla10.001
- :disk2
- echo Please insert Disk 2 in Drive %1
- pause
- if not exist %1:sla10.002 goto disk2
- echo Copying DISK2 . . .
- copy %1:sla10.002
- cls
- echo Reconstructing archive for installation . . .
- copy /b sla10.001+sla10.002 sla10.exe
- del sla10.0*
- rem next line runs the self-extracting archive
- sla10
- del sla10.exe
- echo Installation completed. You may ignore the error message,
- echo if any, appearing on the next line.
- del install2.bat > nul
- goto exit
- :bad
- echo Could not install: no source drive specified
- :exit
-